home *** CD-ROM | disk | FTP | other *** search
- ;Installer Script To Create amitcp:db/aclogonscript
- ;$VER: Dialscript Maker V1 (19/11/95)
- ;
-
- (set sendcmd "#")
-
- (textfile
- (dest "t:dialtest2")
- )
-
- (until (= sendcmd "\0")
- (
- (set rcvcmd
- (askstring
- (prompt "Enter Prompt\n\n(leave blank to exit dialscript editor")
- (help "Enter the text which your internet provider has sent for you to reply to, e.g. login:")
- )
- )
-
- (set sendcmd
- (askstring
- (prompt "Enter Response To Prompt \n\n(leave blank to exit dialscript editor")
- (help "Enter the text which you send after receiving the prompt mentioned in previous data entry box")
- )
- )
- (debug rcvcmd sendcmd)
-
- (if (and (= rcvcmd "\0") (= sendcmd "\0"))
-
- (set fred "fred")
-
- (
- (textfile
- (dest "t:dialtest")
- (append rcvcmd)
- (append "\n")
- (append sendcmd)
- (append "\n")
- )
- (run "type t:dialtest >> t:dialtest2")
- )
-
- )
- )
- )
-
-